home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / rydoor5.arc / RYDOOR5.DOC < prev   
Text File  |  1988-02-03  |  4KB  |  106 lines

  1.                    RyDOOR IBM BIOS Redirector
  2.                    --------------------------
  3.  
  4. RyDOOR (C) Copyright 1988, Gregory J. Ryan
  5.  
  6. Licence
  7. =======
  8. This software is being distributed using the ShareWare concept. This means
  9. that if you find this software useful and valuable you should send the
  10. requested registration fee to the author. If you decide not to use the
  11. software simple remove it from your disk.
  12.  
  13. You may distribute this software free of charge to other bulletin boards but
  14. you may not make a profit doing so.
  15.  
  16. To register this product please send $25 to :
  17.  
  18.           Greg Ryan
  19.           4427 N. Morris Blvd.
  20.           Shorewood, WI  53211
  21.  
  22. Support
  23. =======
  24. I support my programs and am happy to do so. You may reach me on my support
  25. BBS HomeBase in Shorewood, WI at 414-962-1097 or on EXEC-PC at (414)-964-5160.
  26.  
  27. If you desire a special RyDOOR for a particular application please write or
  28. call.
  29.  
  30. Disclaimer
  31. ==========
  32. This software has been tested thoroughly but all the risk of use is upon
  33. the user. In no way will Gregory J. Ryan be held liable for any loss of
  34. profit or any other commerical damage.
  35.  
  36. Introduction
  37. ============
  38.  
  39. RyDOOR is a utility to allow remote use of your computer via modem.
  40.  
  41. If you've ever tried running programs remotely by 'dropping to dos' you are
  42. probably aware of the DOS command CTTY. This is a function that all DOS
  43. input/output to be redirected to the com port and therefore your modem. The
  44. limitations are severe however. You may only run programs that do ALL i/o thru
  45. DOS. This means that all video and keyboard calls have to be exectuted thru
  46. Interrupt $21. Slow! Slow! Slow! And you'll find many programs that just don't
  47. do it!
  48.  
  49. RyDOOR does this one better. It grabs the video ($10) and keyboard interrupt
  50. ($16) and redirects thru the com port. If the video involves a 'move cursor'
  51. command RyDOOR automatically translates the command into the ANSI equivilent.
  52. This means that you must be using a communcations program (remotely) that
  53. employs an ANSI terminal driver....not too difficult these days...Procomm,
  54. qmodem and just about any respectable comm program will handle it.
  55.  
  56. READ THIS!
  57. RyDOOR also grabs the timer interrupt and periodically checks to make
  58. sure that carrier detect is high. If not the system will re-boot. This
  59. means that you don't need to load watchdog or a similar program to check
  60. for unintentional carrier drops. Because of this feature you must not try
  61. to run this program locally!
  62.  
  63. RyDOOR may not work properly with some concurrent operating systems. My
  64. advice is to get it working in DOS first and then changing over to a
  65. concurrent system when you have RyDOOR working satisfactorily.
  66.  
  67. This is the version that can run a program from within it!
  68.  
  69. usage:
  70.  
  71. RYDOOR5 [2] [B:xxx] [T:yyy] F:filename.ext [filename parameters]
  72.  
  73.   where items contained in square brackets are optional and without
  74.   the brackets.
  75.  
  76.   The 2 indicates comm port 2 (comm port 1 is default)
  77.  
  78.   The B: option allows you to specify a key that will escape RYDOOR
  79.   and the program in which you are working.
  80.  
  81.   The T: option allows you to specify a key which will reboot the system
  82.   when pressed.
  83.  
  84.   Only valid ascii characters are accepted and control characters are OK.
  85.   The xxx and yyy are the integer equivilent of the key you wish.
  86.  
  87. NOTE: The F: parameter (along with its' program parameters) MUST be the
  88.       last parameter on the line!!
  89.  
  90. examples
  91.  
  92. RYDOOR5 B:3 T:20 F:\command.com
  93.  
  94. This will run command.com thru RYDOOR. All programs that you load from the
  95. DOS prompt will use RyDOOR for redirection.
  96.  
  97.   it will abort the program by pressing ^C
  98.   it will re-boot computer by pressing ^T or dropping carrier
  99.  
  100. RYDOOR5 B:3 T:20 F:ued.com /b
  101.  
  102. this will run the ued utility via bios calls...
  103.  
  104.   it will abort the program by pressing ^C
  105.   it will re-boot computer by pressing ^T or dropping carrier
  106.